Skip to content

chore: release v0.11.0#97

Closed
acp-release-bot[bot] wants to merge 1 commit intomainfrom
release-plz-2026-03-31T15-04-26Z
Closed

chore: release v0.11.0#97
acp-release-bot[bot] wants to merge 1 commit intomainfrom
release-plz-2026-03-31T15-04-26Z

Conversation

@acp-release-bot
Copy link
Copy Markdown
Contributor

@acp-release-bot acp-release-bot bot commented Mar 31, 2026

🤖 New release

  • agent-client-protocol-derive: 0.11.0
  • agent-client-protocol: 0.10.4 -> 0.11.0 (⚠ API breaking changes)
  • agent-client-protocol-tokio: 0.11.0
  • agent-client-protocol-trace-viewer: 0.11.0
  • agent-client-protocol-conductor: 0.11.0
  • agent-client-protocol-rmcp: 0.11.0
  • agent-client-protocol-cookbook: 0.11.0

agent-client-protocol breaking changes

--- failure enum_missing: pub enum removed or renamed ---

Description:
A publicly-visible enum cannot be imported by its prior path. A `pub use` may have been removed, or the enum itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.46.0/src/lints/enum_missing.ron

Failed in:
  enum agent_client_protocol::IncomingMessage, previously in file /tmp/.tmpFu6kXX/agent-client-protocol/src/rpc.rs:329
  enum agent_client_protocol::StreamMessageContent, previously in file /tmp/.tmpFu6kXX/agent-client-protocol/src/stream_broadcast.rs:47
  enum agent_client_protocol::StreamMessageDirection, previously in file /tmp/.tmpFu6kXX/agent-client-protocol/src/stream_broadcast.rs:33

--- failure struct_missing: pub struct removed or renamed ---

Description:
A publicly-visible struct cannot be imported by its prior path. A `pub use` may have been removed, or the struct itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.46.0/src/lints/struct_missing.ron

Failed in:
  struct agent_client_protocol::RawIncomingMessage, previously in file /tmp/.tmpFu6kXX/agent-client-protocol/src/rpc.rs:317
  struct agent_client_protocol::StreamMessage, previously in file /tmp/.tmpFu6kXX/agent-client-protocol/src/stream_broadcast.rs:24
  struct agent_client_protocol::ClientSide, previously in file /tmp/.tmpFu6kXX/agent-client-protocol/src/lib.rs:245
  struct agent_client_protocol::ClientSideConnection, previously in file /tmp/.tmpFu6kXX/agent-client-protocol/src/lib.rs:30
  struct agent_client_protocol::AgentSideConnection, previously in file /tmp/.tmpFu6kXX/agent-client-protocol/src/lib.rs:387
  struct agent_client_protocol::StreamReceiver, previously in file /tmp/.tmpFu6kXX/agent-client-protocol/src/stream_broadcast.rs:93
  struct agent_client_protocol::AgentSide, previously in file /tmp/.tmpFu6kXX/agent-client-protocol/src/lib.rs:551

--- failure trait_changed_kind: pub trait changed kind ---

Description:
A public trait was replaced by a struct, enum, or union at the same import path.
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.46.0/src/lints/trait_changed_kind.ron
Failed in:
  trait agent_client_protocol::Agent became struct in /tmp/.tmpJJc5f1/rust-sdk/src/agent-client-protocol/src/role/acp.rs:70
  trait agent_client_protocol::Client became struct in /tmp/.tmpJJc5f1/rust-sdk/src/agent-client-protocol/src/role/acp.rs:15

--- failure trait_missing: pub trait removed or renamed ---

Description:
A publicly-visible trait cannot be imported by its prior path. A `pub use` may have been removed, or the trait itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.46.0/src/lints/trait_missing.ron

Failed in:
  trait agent_client_protocol::MessageHandler, previously in file /tmp/.tmpFu6kXX/agent-client-protocol/src/rpc.rs:339
Changelog

agent-client-protocol-derive

0.11.0 - 2026-04-17

Added

  • Migrate to new SDK design (#117)
  • Bring in SACP crates again (#102)

Fixed

  • Catch handler errors instead of killing the connection (#131) (#114)

Other

agent-client-protocol

0.11.0 - 2026-04-17

Added

  • Migrate to new SDK design (#117)

Fixed

  • (rpc) log errors when sending response to peer fails (#101)
  • (rpc) handle write failures in handle_io loop (#99)
  • (rpc) use RawValue::NULL constant instead of from_string().unwrap() (#96)

Other

  • Add mdbook build (#120)
  • Add migration guide for next release (#111)
  • remove debug code from rpc_tests (#100)
  • (test) add conditional compilation (#98)

agent-client-protocol-tokio

0.11.0 - 2026-04-17

Added

  • Migrate to new SDK design (#117)
  • Bring in SACP crates again (#102)

Fixed

  • Remove redundant Box::pin calls from async code (#106)

Other

agent-client-protocol-trace-viewer

0.11.0 - 2026-04-17

Added

  • Migrate to new SDK design (#117)
  • Bring in SACP crates again (#102)

Other

agent-client-protocol-conductor

0.11.0 - 2026-04-17

Added

  • (schema) Update schema to 0.12.0 (#119)
  • Migrate to new SDK design (#117)
  • Bring in SACP crates again (#102)

Fixed

  • Remove redundant Box::pin calls from async code (#106)

Other

agent-client-protocol-rmcp

0.11.0 - 2026-04-17

Added

  • Migrate to new SDK design (#117)
  • Bring in SACP crates again (#102)

Fixed

  • Remove redundant Box::pin calls from async code (#106)

Other

agent-client-protocol-cookbook

0.11.0 - 2026-04-17

Added

  • Migrate to new SDK design (#117)
  • Bring in SACP crates again (#102)

Fixed

  • Re-export Result and update docs to use V1 (#110)

Other


This PR was generated with release-plz.

@acp-release-bot acp-release-bot bot force-pushed the release-plz-2026-03-31T15-04-26Z branch 3 times, most recently from 2e8ec08 to 6868563 Compare April 1, 2026 06:53
@acp-release-bot acp-release-bot bot changed the title chore: release v0.10.5 chore: release Apr 1, 2026
@acp-release-bot acp-release-bot bot force-pushed the release-plz-2026-03-31T15-04-26Z branch from 6868563 to 16d39f2 Compare April 1, 2026 14:59
@acp-release-bot acp-release-bot bot force-pushed the release-plz-2026-03-31T15-04-26Z branch 7 times, most recently from b3a8a62 to 31add53 Compare April 6, 2026 19:20
@acp-release-bot acp-release-bot bot force-pushed the release-plz-2026-03-31T15-04-26Z branch 5 times, most recently from baa0218 to 1aa5913 Compare April 17, 2026 17:37
@acp-release-bot acp-release-bot bot changed the title chore: release chore: release v0.11.0 Apr 17, 2026
@acp-release-bot acp-release-bot bot force-pushed the release-plz-2026-03-31T15-04-26Z branch 4 times, most recently from 27b8366 to b64ad0a Compare April 17, 2026 18:53
@acp-release-bot acp-release-bot bot force-pushed the release-plz-2026-03-31T15-04-26Z branch from b64ad0a to 3eed5f2 Compare April 17, 2026 18:59
@acp-release-bot acp-release-bot bot closed this Apr 17, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants